@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Roboto Condensed', sans-serif; */
/* font-family: 'Poppins', sans-serif; */
* {
    /* margin: 0!important; */
    padding: 0;
    box-sizing: border-box;
}


:root{
    --black : #333333;
    --dark-blue : #0756A5;
    --light-blue : rgba(7, 86, 165, 0.06);
    --white : #fff;
    --orange : #FF5500;
    --poppins : 'Poppins', sans-serif;
    --roboto-condensed : 'Roboto Condensed', sans-serif;
}

html {
    scroll-behavior: smooth!important;
}

  /* <!-- ========== WEBINAR PAGE CSS STARTED========== --> */

/* <!-- ========== WEBINAR BANNER SECTION CSS ========== --> */
.webinar-hero-section{
    padding-top:127px;
}
.webinar-hero-section .webinar-hero-inner-section{
    padding:220px 0;
    background: url(../images/gc-webinar-banner-new.webp);
    background-position: top right;
    background-size: cover;
}
.webinar-hero-section .content{
    text-align: center;
}
.webinar-hero-section .content p{
    font-size:16px;
    line-height: 24px;
    font-weight:400;
    color: var(--white);
    margin-bottom:10px;
    font-family: var(--poppins);
}
.webinar-hero-section .content h1{
    font-size:72px;
    font-weight:700;
    margin-bottom:20px;
    color: var(--white);
    font-family: var(--roboto-condensed)
}

.webinar-hero-section .content a{
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    padding: 18px 40px;
    background: var(--orange);
    border-radius: 130px;
    cursor: pointer;
    display: inline-block;
    font-family:var(--poppins);
}
.webinar-hero-section .content a:hover{
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
}

/* <!-- ========== UPCOMING WEBINAR SECTION CSS ========== --> */
.upcoming-webinar-section{
    padding: 85px 0;
}

.upcoming-webinar-sub-heading{
    font-size:16px;
    line-height: 28px;
    font-weight:400;
    color: var(--black);
    margin-bottom:10px;
    font-family: var(--poppins);
    text-align: center;
}

.upcoming-webinar-heading{
    font-size:48px;
    font-weight:600;
    margin-bottom:60px;
    color: var(--dark-blue);
    text-align: center;
    font-family: var(--roboto-condensed)
}

.upcoming-webinar-tabs-ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 60px;
}

.upcoming-webinar-tabs-li{
    flex: 1 1 0;
    max-width: 290px;
}

.upcoming-webinar-tabs-li button{
    padding: 15px 15px;
    background-color: var(--light-blue);
    border-radius: 10px;
    width: 100%;
    min-width: 0;
    border: none;
    position: relative;
    cursor: pointer;
}

.upcoming-webinar-tabs-li .li-heading{
    font-size:48px;
    font-weight:600;
    color: var(--dark-blue);
    display: block;
    text-align: center;
    font-family: var(--roboto-condensed)
}

.upcoming-webinar-tabs-li .li-sub-heading{
    font-size:16px;
    font-weight:400;
    color: var(--dark-blue);
    display: block;
    margin-bottom:10px;
    font-family: var(--poppins);
    text-align: center;
}

.upcoming-webinar-tabs-li button.active{
    background-color: var(--dark-blue);
}

.upcoming-webinar-tabs-li button.active .li-heading,.upcoming-webinar-tabs-li button.active .li-sub-heading{
    color: var(--white);
}

.upcoming-webinar-tabs-li button.active:after{
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
    content: "";
    display: block;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 26px solid var(--dark-blue);
}

.tabs-content-wrapper .tab-content{
    border: none;
    min-height: 200px;
    height: 100%;
}

.all-cards-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.webinar-tab-card-wrapper{
    border: 1px solid var(--white);
    background: #F7F8FB;
    padding: 18px 12px;
}


.webinar-tab-card{
    border: 5px solid var(--white);
    padding: 28px;
    display: flex;
    align-items: start;
    gap: 23px;
}

.webinar-tab-card-wrapper.no-webinar .webinar-tab-card{
    align-items: center;
    justify-content: center;
}

.webinar-tab-card-wrapper:hover .webinar-tab-card{
    border: 5px solid var(--dark-blue);
}

.webinar-tab-card-image{
    max-width: 208px;
    width: 100%;
}

.webinar-tab-card-image img{
    height: 100%;
    object-fit: cover;
    width: 208px;
    border-radius: 6px;
}

.webinar-tab-card-content h2{
    font-size:24px;
    font-weight:500;
    color: var(--black);
    font-family: var(--roboto-condensed);
    margin-bottom: 10px;
    line-height: 28px;
}

.webinar-tab-card-wrapper.no-webinar .webinar-tab-card-content h2{
    margin-bottom: 0;
    padding: 50px 0;
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
}

.webinar-tab-card-content h2 span{
    color: var(--dark-blue);
    font-size:16px;
    font-weight:400;
    font-family: var(--poppins);
}

.webinar-tab-card-content p{
    font-size:16px;
    font-weight:400;
    color: var(--black);
    font-family: var(--poppins);
    margin-bottom: 18px;
    line-height: 24px;
}

.webinar-tab-card-content p a{
    text-decoration: underline;
}

.webinar-tab-card-content .date-time-wrapper{
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 25px;
}

.webinar-tab-card-content .date-time-wrapper div{
    display: flex;
    align-items: center;
    gap: 10px;
}

.webinar-tab-card-content .date-time-wrapper div img{
    height: 24px;
    width: 24px;
}

.webinar-tab-card-content .date-time-wrapper div p{
    font-size:16px;
    font-weight:500;
    color: var(--black);
    font-family: var(--poppins);
    line-height: 28px;
    margin-bottom: 0;
}

.webinar-tab-card-content .register-btn{
    font-size:14px;
    font-weight:400;
    color: var(--dark-blue);
    font-family: var(--poppins);
    text-decoration: none;
    padding: 12px 22px;
    border: 1px solid var(--dark-blue);
    border-radius: 80px;
    display: inline-block;
}

.webinar-tab-card-content .register-btn:hover{
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-blue);
    color: var(--white);
}

[data-tab-content] {
    display: none;
}

.active[data-tab-content] {
    display: block;
}

/* <!-- ========== WEBINAR RECORDINGS SECTION CSS ========== --> */
.webinar-recording-section{
    margin-bottom: 85px;
}

.recording-cards-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.recording-cards-wrapper .recording-card{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 26px;
    width: 100%;
}

.recording-card .video-content{

}

.recording-card .video-content iframe{
    border-radius: 7px;
}

.recording-card .text-content{
    width: 100%;
}

.recording-card .text-content h4{
    font-family: var(--roboto-condensed);
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 18px;
}

.recording-card .text-content p{
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.webinar-onboarding-section{
    margin-bottom: 90px;
}


.webinar-onboarding-banner{
    padding: 140px 0;
    background: url(../images/gc-webinar-onboarding-reboarding-banner.webp);
    background-position: left center;
    background-size: cover;
}

.webinar-onboarding-banner .content{
    padding-left: 40px;
}

.webinar-onboarding-banner h2{
    font-size: 48px;
    font-weight: 700;
    font-family: var(--roboto-condensed);
    color: #fff;
    line-height: 56px;
    margin-bottom: 40px;
}

.webinar-onboarding-banner a{
    padding: 20px 31px;
    border-radius: 130px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--poppins);
    background-color: #FF5500;
    color: #fff;
    line-height: normal;
    display: inline-block;
}

.webinar-onboarding-banner a:hover{
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
}

.read-more-text{
    display:none
}


/***************************************************************/
/* <!-- ========== RESPONSIVE MEDIA QUERIES CSS ========== --> */
/***************************************************************/

/* <!-- === RESPONSIVE 1198px STARTS HERE === --> */

@media (max-width:1198px){
    .webinar-hero-section .webinar-hero-inner-section{
        padding: 130px 0;
    }

    .recording-card .video-content iframe{
        width: 350px;
        height: 197px;
    }

    .webinar-tab-card-image img{
        width: 208px;
    }
}


/* <!-- === RESPONSIVE 992PX STARTS HERE === --> */

@media (max-width:992px){
    .webinar-hero-section{
        padding-top: 107px;
    }

    .webinar-hero-section .content h1{
        font-size: 60px;
    }

    .webinar-hero-section .content a{
        font-size: 20px;
        padding: 15px 35px;
    }

    .webinar-hero-section .webinar-hero-inner-section{
        padding: 100px 0;
    }

    .upcoming-webinar-heading{
        font-size: 42px;
    }

    .upcoming-webinar-tabs-li .li-heading{
        font-size: 36px;
        line-height: 48px;
    }

    .upcoming-webinar-tabs-li .li-sub-heading{
        font-size: 15px;
        line-height: 18px;
    }

    .upcoming-webinar-tabs-ul{
        gap: 15px;
    }

    .upcoming-webinar-tabs-li {
        width: calc(33.3% - 15px);
    }

    .upcoming-webinar-tabs-li button{
        padding: 13px 10px;
        min-width: 100%;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
    }

    .webinar-tab-card-content .date-time-wrapper{
        gap: 15px;
        margin-bottom: 15px;
    }

    .webinar-tab-card-content h2{
        font-size: 22px;
        line-height: 26px;
    }

    .webinar-tab-card-content p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .webinar-tab-card-content .date-time-wrapper div p{
        font-size: 14px;
        line-height: 19px;
    }

    .webinar-tab-card-content .date-time-wrapper div img{
        width: 18px;
        height: 18px;
    }

    .webinar-tab-card-content .register-btn{
        padding: 8px 20px;
    }

    .webinar-tab-card-wrapper{
        padding: 12px 8px;
    }

    .webinar-tab-card{
        gap: 20px;
        padding: 20px;
    }

    .upcoming-webinar-section{
        padding: 70px 0;
    }

    .all-cards-wrapper{
        gap: 25px;
    }

    .webinar-recording-section {
        margin-bottom: 70px;
    }

    .webinar-recording-section .upcoming-webinar-heading{
        font-size: 38px;
    }

    .webinar-onboarding-banner{
        padding: 100px 0;
    }

    .webinar-onboarding-banner .content{
        padding-left: 25px;
    }

    .webinar-onboarding-banner h2 {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 30px;
    }

    .webinar-onboarding-banner a{
        padding: 15px 31px;
    }
    
    .webinar-tab-card-image {
        max-width: 165px;
        width: 100%;
    }

    .recording-cards-wrapper .recording-card{
        gap: 20px;
    }

    .recording-card .video-content iframe{
        width: 240px;
        height: 135px;
    }


    .recording-card .text-content h4{
        font-size: 22px;
        margin-bottom: 12px;
    }

    .recording-card .text-content p{
        font-size: 14px;
        line-height: 23px;
    }

    .webinar-tab-card-image img{
        width: 160px;
    }

}


/* <!-- === RESPONSIVE ONLY 768px STARTS HERE === --> */

@media (max-width:768px){
    .webinar-hero-section {
        padding-top: 0px;
    }
}


/* <!-- === RESPONSIVE ONLY 767px STARTS HERE === --> */

@media (max-width:767px){

    .webinar-hero-section .webinar-hero-inner-section{
        padding: 70px 0;
    }

    .webinar-hero-section .content h1{
        font-size: 48px;
    }

    .webinar-hero-section .content p{
        font-size: 14px;
    }

    .webinar-hero-section .content a{
        font-size: 18px;
    }

    .upcoming-webinar-section{
        padding: 50px 0;
    }

    .upcoming-webinar-sub-heading{
        font-size: 14px;
    }

    .upcoming-webinar-heading{
        font-size: 38px;
        margin-bottom: 30px;
    }

    .upcoming-webinar-tabs-li button{
        padding:11px 5px;
        min-height: 98px;
    }

    .upcoming-webinar-tabs-li .li-heading{
        font-size: 24px;
        line-height: 36px;
    }

    .upcoming-webinar-tabs-li .li-sub-heading{
        font-size: 12px;
        line-height: 15px;
    }

    .upcoming-webinar-tabs-li button.active:after {
        bottom: -10px;
        margin-left: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--dark-blue);
    }

    .upcoming-webinar-tabs-ul{
        margin-bottom: 35px;
    }


    .webinar-tab-card{
        flex-direction: column;
    }

    .webinar-tab-card-image{
        max-width: 100%;
    }

    .webinar-tab-card-image img{
        max-height: 240px;
        width: 100%;
    }

    .webinar-recording-section {
        margin-bottom: 50px;
    }

    .webinar-recording-section .upcoming-webinar-heading{
        font-size: 28px;
    }

    .recording-cards-wrapper .recording-card{
        flex-direction: column;
    }

    .recording-card .video-content{
        width: 100%;
    }

    .recording-card .video-content iframe{
        width:100%;

    }

    .webinar-onboarding-banner .content{
        padding-left: 0;
    }
    .webinar-onboarding-banner{
        padding: 90px 0;
    }
    .webinar-tab-card-wrapper.no-webinar .webinar-tab-card-content h2{
        text-align: center;
        padding: 40px 0;
        font-size: 24px;
        line-height: 30px;
    }

    .recording-card .video-content iframe{
        width: 510px;
        height: 287px;
    }
}


/* <!-- === RESPONSIVE ONLY 575px STARTS HERE === --> */

@media (max-width:575px){
    .webinar-hero-section .webinar-hero-inner-section{
        padding: 50px 0;
    }

    .webinar-hero-section .content h1{
        font-size: 38px;
    }

    .upcoming-webinar-heading{
        font-size: 28px;
    }

    .webinar-hero-section .content a{
        font-size: 16px;
        padding: 12px 30px;
    }

    .upcoming-webinar-tabs-ul{
        gap: 10px;
        margin-bottom: 25px;
    }

    .upcoming-webinar-tabs-li {
        width: calc(33.3% - 8px);
    }

    .upcoming-webinar-tabs-li button{
        min-height: 90px;
    }
    
    .upcoming-webinar-tabs-li .li-heading{
        font-size: 20px;
        line-height: 28px;
    }

    .webinar-tab-card-wrapper{
        padding: 8px 6px;
    }

    .webinar-tab-card{
        padding: 10px;
    }
    
    .webinar-tab-card-image img{
        max-height: 200px;
    }

    .webinar-tab-card-content .date-time-wrapper{
        flex-direction: column;
        align-items: start;
    }

    .webinar-tab-card-content .register-btn {
        padding: 4px 16px;
    }

    .webinar-onboarding-section{
        padding: 0 15px;
    }

    .webinar-onboarding-banner{
        padding: 70px 0;
    }

    .webinar-onboarding-banner .content{
        text-align: center;
    }

    .webinar-onboarding-banner h2 {
        font-size: 32px;
        line-height: 41px;
        margin-bottom: 20px;
    }

    .webinar-onboarding-banner a{
        padding: 12px 25px;
        font-size: 16px;
    }

    .recording-card .video-content iframe{
        width: 100%;
        height: 225px;
    }
}

.category-tabs-ul { display:flex; gap:15px; flex-wrap:wrap; justify-content:flex-start; list-style:none; margin:20px 0 40px; padding:0; }
.category-tab-btn { padding:9px 20px; border-radius:80px; border:1px solid #D9D9D9; background:var(--white); color:var(--black); font-family:var(--poppins); font-size:18px;font-weight: 400; cursor:pointer; }
.category-tab-btn.active { background:#E5EEFC; color:var(--dark-blue); border-color:var(--dark-blue); }

.category-tab-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 28px;
    line-height: 1;
    vertical-align: middle;
    color: var(--orange);
}

/* ===== SPECIAL TRAINING CARD (independent design) ===== */
.st-card-wrapper { position: relative; }

.st-badge {
    background: #FF5500;
    color: var(--white);
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding: 7px 10px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 25px;
    display: inline-block;
}

.st-badge-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 23px;
    line-height: 1;
}

.st-card {
    background: #F7F8FB;
    border: 1px solid #0756A5;
    border-radius: 8px;
    padding:0 25px 25px 25px;
}

.st-header { display: flex; align-items: flex-start; gap: 15px; }

.st-presenter { flex: 0 0 211px; width: 211px; }

.st-presenter-photo {
    width: 211px;
    height: auto;
    object-fit: cover;
    display: block;
}

.st-presenter-box {
    margin-top: 12px;
    border: 1px solid #0756A5;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #EFF6FE;
}

.st-presenter-box-header {
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    padding: 4px 15px;
}

.st-presenter-name {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: var(--dark-blue);
    margin: 7px 18px 5px 18px;
}

.st-presenter-title {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: var(--black);
    margin: 0 18px 8px 18px;
}

.st-main { flex: 1 1 auto; min-width: 0; }

.st-title {
    font-family: var(--roboto-condensed);
    font-weight: 500;
    font-size: 26px;
    line-height: 28px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.st-subtitle {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px;
}

.st-description {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--black);
    margin-bottom: 0;
}

.st-description strong{
    font-weight:500;
}

.st-read-more-btn {
    color: var(--dark-blue);
    text-decoration: underline;
    font-family: var(--poppins);
    font-size: 14px;
}

.st-divider {
    border: none;
    border-top: 1px solid var(--dark-blue);
    margin:0 0 35px 0;
}

.st-sessions-box,
.st-learn-box {
    border: 1px solid #E1E7F1;
    border-radius: 8px;
    padding: 24px 24px;
    background: var(--white);
}

.st-sessions-box { margin-bottom: 24px; margin-top: 24px; padding-bottom: 10px; }

.st-sessions-heading {
    font-family: var(--roboto-condensed);
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.st-session-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #D9D9D9;
    flex-wrap: wrap;
}

.st-session-row:last-child { border-bottom: none; }

.st-session-info { display: flex; align-items: center; gap: 35px; flex-wrap: wrap; }

.st-session-date, .st-session-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
}

.st-session-date{
    width: 300px;
}

.st-session-date img, .st-session-time img { width: 18px; height: 18px; }

.st-register-btn {
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 80px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    border: 1px solid var(--dark-blue);
}

.st-register-btn:hover {
    border: 1px solid var(--orange);
    background: var(--orange);
    color: var(--white);
    transform: translateY(-4px);
    transition: all 0.3s ease-in-out;
}

.st-register-btn:active , .st-register-btn:focus{
    color: var(--white);
}

.st-learn-heading {
    font-family: var(--roboto-condensed);
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.st-learn-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-learn-columns li {
    position: relative;
    padding-left: 30px;
    min-height: 22px;
    font-family: var(--poppins);
    font-size: 14px;
    line-height: 21px;
    color: var(--black);
}

.st-learn-columns li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #EDF4FD;
}

.st-learn-columns li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--dark-blue);
    border-bottom: 2px solid var(--dark-blue);
    transform: rotate(-45deg);
}

.st-learn-box-2 {
    margin-top: 24px;
}

.st-learn-box-2-text {
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--black);
    margin-bottom: 0;
}

.st-learn-box-2-text strong{
    font-weight: 500;
}

@media (max-width: 992px) {
    .category-tab-btn { font-size: 16px; padding: 7px 18px;}
    .category-tabs-ul {margin: 10px 0 30px ;}
    .st-presenter{flex: 0 0 180px; width: 180px; }
    .st-presenter-photo {width: 180px;height: auto;}
}

@media (max-width: 767px) {
    .st-divider{margin: 0 0 20px 0;}
    .category-tab-btn { font-size: 14px; padding: 5px 12px;}
    .category-tabs-ul {margin: 10px 0 20px ;}
    .st-presenter-photo {max-width: 600px;height: auto;width: 100%;}
    .st-presenter-photo {width: 100%;height: auto;}
    .st-presenter-box{ max-width: 600px; width: 100%; }
    .category-tab-star {width: 18px;height: 18px;font-size: 23px;}
    .st-card { padding:0 15px 15px 15px;}
    .st-badge{font-size: 14px;line-height: 16px;padding: 5px 8px 7px;margin-bottom: 20px;}
    .st-badge-star{width: 18px;height: 18px;font-size: 18px;}
    .st-sessions-box, .st-learn-box{padding:20px;}
    .st-session-date{width: 100%; }
    .st-session-row { flex-direction: column; align-items: flex-start; gap:15px}
    .st-register-btn{padding:5px 18px}
    .st-session-date, .st-session-time{font-size: 14px;line-height: 20px;}
    .st-header { flex-direction: column; align-items: center; }
    .st-presenter { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .st-main { width: 100%; }
    .st-title, .st-subtitle, .st-description { text-align: left; }
    .st-session-info { flex-direction: column; align-items: flex-start; gap: 8px; }
    .st-learn-columns { grid-template-columns: 1fr; }
}
